home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 2003 June / macformat-130.iso / mac / Shareware⁄Freeware (OS X) / Internet / soybo-1.0.1 / macosx_components / Sample Soyvices / Process Menu / templates / processmenu.tpl
Encoding:
Text File  |  2003-03-09  |  1.0 KB  |  40 lines  |  [TEXT/????]

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
  2.         "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
  4. <head>
  5.     <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
  6.     <title>{$_SERVICE.locale.title}</title>
  7. { include file=$_SERVER.templates.header }
  8. </head>
  9. <body>
  10.  
  11. { include file=$_SERVER.templates.navbar }
  12.  
  13. <div id="content">
  14.  
  15. { include file=$_SERVER.templates.service }
  16.  
  17.     <form method="post" action="{$_SERVICE.url}.process">
  18.     <div class="center">
  19.     <p>
  20.     <label for="the_app">{$_SERVICE.locale.label}</label>
  21.     <select name="the_app">
  22.         {section name=apps loop=$_SERVICE.response.apps}
  23.             {if $_SERVICE.response.current_app == $_SERVICE.response.apps[apps]}
  24.                 <option selected="selected">{$_SERVICE.response.apps[apps]}</option>
  25.             {else}
  26.                 <option>{$_SERVICE.response.apps[apps]}</option>
  27.             {/if}
  28.         {/section}
  29.     </select>
  30.     </p>
  31.     <p>
  32.     <input type="submit" value="{$_SERVICE.locale.go}" />
  33.     </p>
  34.     </div>
  35. </div>
  36.  
  37. { include file=$_SERVER.templates.footer }
  38.  
  39. </body>
  40. </html>